home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / COMPILER / SATHER / !Sather / Library / Math / Math.sam next >
Text File  |  1997-03-08  |  2KB  |  49 lines

  1. -- Copyright (C) International Computer Science Institute, 1994.  COPYRIGHT  --
  2. -- NOTICE: This code is provided "AS IS" WITHOUT ANY WARRANTY and is subject --
  3. -- to the terms of the SATHER LIBRARY GENERAL PUBLIC LICENSE contained in    --
  4. -- the file "Doc/License" of the Sather distribution.  The license is also   --
  5. -- available from ICSI, 1947 Center St., Suite 600, Berkeley CA 94704, USA.  --
  6. --------> Please email comments to "sather-bugs@icsi.berkeley.edu". <----------
  7.  
  8. (* 
  9.  
  10. MATH CLASSES
  11.  
  12. Complex numbers of various species are CPX, CPXD etc.
  13.  
  14. INTI is an infinite precision integer.  RAT is a rational
  15. number built using INTI.
  16.  
  17. Random numbers can be obtained by RND and, more generally,
  18. $RANOM_GEN classes.
  19.  
  20. *)
  21.     Matvec.sam
  22.     cpx.sa -has cpx.sa CPX 
  23.     cpxd.sa -has cpxd.sa CPXD 
  24.     inti.sa -has inti.sa INTI
  25.     rat.sa -has rat.sa RAT
  26.  
  27.     i_interval.sa -has i_interval.sa I_INTERVAL -- Integer intervals
  28.  
  29.     test/i_interval.sa    -has test/i_interval.sa TEST_I_INTERVAL
  30.     test/cpx.sa -has test/cpx.sa TEST_CPX    
  31.  
  32.     -- Random number classes
  33.     rnd.sa -has rnd.sa RND $RANDOM_GEN MS_RANDOM_GEN 
  34.     randomperm.sa -has randomperm.sa PERM_RANDOM_GEN
  35.     test/rnd.sa -has test/rnd.sa TEST_RND
  36.  
  37.     -- Algorithm classes.     
  38.     -- Comment out svd until the matrix/vector stuff is fixed
  39.     svd.sa -has svd.sa NR_SVD TEST_SVD  -- Singular value decomposition
  40.     fft.sa -has fft.sa FFT TEST_FFT     -- Fast fourier transform
  41.     jacobi.sa -has jacobi.sa 
  42.     -- Computation of all eigenvalues/eigenvectors 
  43.     -- of real symm matrices
  44.     JACOBI TEST_JACOBI 
  45.     
  46.  
  47.  
  48.  
  49.